home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 23
/
AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso
/
Tools
/
SFX-Player
/
WaveTracer
/
ARexx
/
Info.rx
< prev
next >
Wrap
Text File
|
1999-11-06
|
784b
|
32 lines
/* WaveTracer DS Sampleinfos */
/* © by QXC & VIRTUAL WORLDS PRODUCTIONS */
options results
ADDRESS 'WTRexx'
GETSAMPLESIZE
say
if result=0 then
say 'Es ist kein Sound vorhanden!'
else do
say 'Es ist ein Sound vorhanden:'
say
GETSAMPLESIZE
say ' Länge: ' result 'Samples'
GETSOUNDMODE
select
when result=1 then SMode='Mono'
when result=2 then SMode='Stereo'
when result=3 then SMode='3 Channel'
when result=4 then SMode='Quadro'
when result=5 then SMode='Dolby Surround®'
when result=6 then SMode='Dolby AC-3® (ohne Subwoofer)'
when result=7 then SMode='Dolby AC-3®'
otherwise SMode='Unbekannter Soundmode!'
end
say ' Soundmode: ' SMode
GETCHANNELS
say ' Kanal-Flag:' result
end